home *** CD-ROM | disk | FTP | other *** search
/ Aminet 44 / Aminet 44 (2001)(GTI - Schatztruhe)[!][Aug 2001].iso / Aminet / comm / mail / YAM23src.lha / Source / all_dice.c next >
C/C++ Source or Header  |  2001-05-08  |  2KB  |  58 lines

  1. /***************************************************************************
  2.  
  3.  YAM - Yet Another Mailer
  4.  Copyright (C) 1995-2000 by Marcel Beck <mbeck@yam.ch>
  5.  Copyright (C) 2000-2001 by YAM Open Source Team
  6.  
  7.  This program is free software; you can redistribute it and/or modify
  8.  it under the terms of the GNU General Public License as published by
  9.  the Free Software Foundation; either version 2 of the License, or
  10.  (at your option) any later version.
  11.  
  12.  This program is distributed in the hope that it will be useful,
  13.  but WITHOUT ANY WARRANTY; without even the implied warranty of
  14.  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  15.  GNU General Public License for more details.
  16.  
  17.  You should have received a copy of the GNU General Public License
  18.  along with this program; if not, write to the Free Software
  19.  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  20.  
  21.  YAM Official Support Site :  http://www.yam.ch
  22.  YAM OpenSource project    :  http://sourceforge.net/projects/yamos/
  23.  
  24.  $Id: all_dice.c,v 1.4 2001/05/08 22:27:37 damato Exp $
  25.  
  26. ***************************************************************************/
  27.  
  28. #include "extrasrc/md5.c"
  29. #include "extrasrc/astcsma.c"
  30. #include "extrasrc/getft.c"
  31. #include "extrasrc/stccpy.c"
  32. #include "extrasrc/stcgfe.c"
  33. #include "extrasrc/stcgfn.c"
  34. #include "extrasrc/stpblk.c"
  35. #include "extrasrc/strmfp.c"
  36. #include "extrasrc/strsfn.c"
  37. #include "extrasrc/wbpath.c"
  38. #include "extrasrc/NewReadArgs.c"
  39. #include "extrasrc/stch_i.c"
  40. #include "extrasrc/dice.c"
  41.  
  42. void wbmain(struct WBStartup *wbs)
  43. {
  44.    main(0, (char**)wbs);
  45. }
  46.  
  47. #include <stdarg.h>
  48. int KPrintF(const char *format)
  49. {
  50.    int n; va_list vl;
  51.  
  52.    va_start(vl,format);
  53.    n=fprintf(stderr,format,vl);
  54.    va_end(vl);
  55.    fflush(stderr);
  56.    return n;
  57. }
  58.